projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c78604
)
textmodes/reftex-global.el (reftex-create-tags-file): Quote file
author
Carsten Dominik
<dominik@science.uva.nl>
Thu, 12 Oct 2006 13:26:05 +0000
(13:26 +0000)
committer
Carsten Dominik
<dominik@science.uva.nl>
Thu, 12 Oct 2006 13:26:05 +0000
(13:26 +0000)
arguments.
lisp/textmodes/reftex-global.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/reftex-global.el
b/lisp/textmodes/reftex-global.el
index e1ae98a59df8204a3d3ceee6f2c514f4c276b3b7..b878c28873539a9352771802a45a2814c8e75272 100644
(file)
--- a/
lisp/textmodes/reftex-global.el
+++ b/
lisp/textmodes/reftex-global.el
@@
-38,7
+38,8
@@
The TAGS file is also immediately visited with `visit-tags-table'."
(reftex-access-scan-info current-prefix-arg)
(let* ((master (reftex-TeX-master-file))
(files (reftex-all-document-files))
- (cmd (format "etags %s" (mapconcat 'identity files " "))))
+ (cmd (format "etags %s" (mapconcat 'shell-quote-argument
+ files " "))))
(save-excursion
(set-buffer (reftex-get-file-buffer-force master))
(message "Running etags to create TAGS file...")